home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / tests / ConfuseMore.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-18  |  613 b   |  52 lines

  1. /* -*-objc-*- */
  2.  
  3. /* 
  4.   $Header$
  5.   $Author: dglattin $
  6.   $Date$
  7.   $Log$
  8.  */
  9.  
  10. #ifndef __CONFUSEMORE_H
  11. #define __CONFUSEMORE_H
  12.  
  13. #include  <SubClass1.h>
  14. #include  <SubClass2.h>
  15. #include  <SubClass3.h>
  16.  
  17.  
  18. @interface SubClass1 (Fifth_Test)
  19.  
  20. - additionalMethod1; /* Intentional conflict. */
  21. - additionalMethod_2;
  22.  
  23. @end
  24.  
  25.  
  26. @interface SubClass2 (Third_Test)
  27.  
  28. - additionalMethod_1;
  29. - additionalMethod_2;
  30. - additionalMethod_3;
  31.  
  32. @end
  33.  
  34.  
  35. @interface SubClass3 (Second_Test)
  36.  
  37. + additionalClassMethodTwo;
  38. - additionalMethod_1a;
  39. - additionalMethod_2a;
  40.  
  41. @end
  42.  
  43.  
  44. @interface SubClass1 (Sixth_Test)
  45.  
  46. - additionalMethod_3;
  47.  
  48. @end
  49.  
  50.  
  51. #endif
  52.